python get dir

27

get wd in python -

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>

python get dir -

import os 
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))

#current dir
cwd = os.getcwd()

python how to get directory of script -

import os
print(os.path.abspath(''))

Comments

Submit
0 Comments